home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / gengetopt-2.6.lha / gengetopt-2.6 / reconf < prev    next >
Text File  |  2000-07-01  |  779b  |  28 lines

  1. # Copyright (C) 1999, 2000, Lorenzo Bettini <lorenzo.bettini@penteres.it>
  2. #  
  3. # This file is free software; as a special exception the author gives
  4. # unlimited permission to copy and/or distribute it, with or without 
  5. # modifications, as long as this notice is preserved.
  6. # This program is distributed in the hope that it will be useful, but
  7. # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9.  
  10. # NOTE: I didn't like acconfig to erase my acconfig.h so I took it away
  11. # Lorenzo
  12.  
  13. #!/bin/sh
  14. rm -f config.cache
  15. # rm -f acconfig.h
  16. echo "- aclocal."
  17. aclocal
  18. echo "- autoconf."
  19. autoconf
  20. # echo "- acconfig."
  21. # acconfig
  22. echo "- autoheader."
  23. autoheader
  24. echo "- automake."
  25. automake -a
  26. exit
  27.